home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / libnixV1_0.lha / gnu / libnix-sources.lha / sources / headers / pool.h < prev    next >
C/C++ Source or Header  |  1995-04-20  |  374b  |  18 lines

  1. #include <exec/lists.h>
  2. #include <exec/memory.h>
  3. #include <exec/execbase.h>
  4. #include <clib/alib_protos.h>
  5. #include <proto/exec.h>
  6.  
  7. /*     our PRIVATE! memory pool structure 
  8.    (_NOT_ compatible with original amiga.lib!) */
  9.  
  10. typedef struct Pool
  11. {
  12.   struct MinList PuddleList;
  13.   struct MinList ThreshList;
  14.   ULONG MemoryFlags;
  15.   ULONG PuddleSize;
  16.   ULONG ThreshSize;
  17. } POOL;
  18.